home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 9 / The PC-SIG Library on CD ROM - Ninth Edition.iso / 801_900 / DISK0829 / DISK0829.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1988-12-11  |  2KB  |  51 lines

  1. rem --------------------------------------------------------------------
  2. rem READ THIS CAREFULLY.......
  3. rem This installation procedure assumes that the ME disk is in drive A
  4. rem and that you want to install ME on drive C. If this is not what you
  5. rem want to do, press CTRL BREAK now. You should then modify this
  6. rem installation file to work with your setup.
  7. rem --------------------------------------------------------------------
  8. pause
  9. rem --------------------------------------------------------------------
  10. rem Make the directory \ME on current drive & create a few subdirectories
  11. rem --------------------------------------------------------------------
  12. pause Put the ME distribution disk in drive A
  13. cd \
  14. md me
  15. cd \me
  16. copy a:arce.com
  17. rem --------------------------------------------------------------------
  18. rem                  Process HELP - the help files
  19. rem  We will install the help files into the \ME\HELP subdirectory.
  20. rem --------------------------------------------------------------------
  21. :a1
  22. pause
  23. arce a:help
  24. rem --------------------------------------------------------------------
  25. rem                     Process the Macro files
  26. rem We will put the macro source files into \ME\MACROS. Compile the
  27. rem macros which you will use by using the command "maccomp <macroname>".
  28. rem ME does not require any macros to run, so you need not compile
  29. rem any macros if you aren't going to be using any. We will also put
  30. rem the alternate help files which are used by the helpme macro into
  31. rem the \ME\MACROS\HELP subdirectory.
  32. rem --------------------------------------------------------------------
  33. :a2
  34. pause We are going to install the macro files
  35. md macros
  36. cd macros
  37. \me\arce a:macros.arc /v
  38. cd ..
  39. rem --------------------------------------------------------------------
  40. rem                     Process the main files
  41. rem --------------------------------------------------------------------
  42. :a3
  43. copy a:*.* /v
  44. cls
  45. rem =========== ME is now installed in subdirectory \ME ===============
  46. rem To set the ME environment variable, put the line SET ME=\ME in your
  47. rem AUTOEXEC.BAT file.
  48. rem If you want to dearchive the ME manual, issue the command :
  49. rem    ARCE A:MANUAL
  50. rem --------------------------------------------------------------------
  51.